home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / UUPC11QS.ARJ / ULIB.H < prev    next >
C/C++ Source or Header  |  1991-11-23  |  532b  |  27 lines

  1. /*
  2.    ulib.h
  3. */
  4.  
  5.  
  6. extern boolean port_active;         /* Port active flag for error handler   */
  7.  
  8. extern int openline(char *name, BPS baud, const boolean direct);
  9.  
  10. extern unsigned int sread(char *buffer,
  11.                           unsigned int wanted,
  12.                           unsigned int timeout);
  13.  
  14. int swrite(char *data, unsigned int len);
  15.  
  16. void ssendbrk(unsigned int duration);
  17.  
  18. void closeline(void);
  19.  
  20. void SIOSpeed(BPS baud);
  21.  
  22. void flowcontrol( boolean );
  23.  
  24. void hangup( void );
  25.  
  26. BPS GetSpeed( void );
  27.